Link Tracking Click Event
When a user clicks a Visit Website CTA button on a template, a Click Event Webhook will be sent to the enterprise-configured callback URL. This webhook notifies the enterprise about the click interaction along with relevant metadata.
Payload Description
| Name | Description | JSON Type |
|---|---|---|
| msisdn | Recipient mobile number | String |
| timestamp | Click timestamp | String |
| url | The target long URL clicked by the user | String |
| responseId | Unique identifier generated for the click response | String |
| status | Event type. Always set to click | String |
| userAgent | User agent of the device or browser used | String |
| userAddress | IP address of the user at the time of click | String |
| tags | Custom metadata passed during message submission | Object |
Payload:
{
"statuses": [
{
"msisdn": "<msisdn>",
"timestamp": "<timestamp>",
"url": "<targetUrl>",
"responseId": "<responseId>",
"status": "click",
"userAgent": "<userAgent>",
"tags": {
"MSISDN": "<msisdn>",
"appID": "<appId>",
"campaign": "<campaignName>",
"messageId": "<messageId>",
"responseId": "<responseId>",
"template": "<templateName>"
}
}
]
}